home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libgksu2-0.postrm < prev    next >
Text File  |  2009-07-30  |  498b  |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Automatically added by dh_makeshlibs
  6. if [ "$1" = "remove" ]; then
  7.     ldconfig
  8. fi
  9. # End automatically added section
  10.  
  11.  
  12. if [ "$1" = "remove" ]; then
  13.     # hack to avoid breaking update-gconf-defaults when leaving
  14.     # a dangling symlink;
  15.     if ! test -e $(readlink /etc/alternatives/libgksu-gconf-defaults); then
  16.     rm -f /usr/share/gconf/defaults/10_libgksu > /dev/null 2>&1 || true
  17.     fi
  18.  
  19.     if which update-gconf-defaults >/dev/null 2>&1; then
  20.     update-gconf-defaults
  21.     fi
  22. fi
  23.